home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / basic / pbc_bas.exe / INT2DATS.BAS < prev    next >
BASIC Source File  |  1993-01-01  |  693b  |  16 lines

  1. '   +----------------------------------------------------------------------+
  2. '   |                                                                      |
  3. '   |        PBClone  Copyright (c) 1990-1993  Thomas G. Hanlin III        |
  4. '   |                                                                      |
  5. '   +----------------------------------------------------------------------+
  6.  
  7.    DECLARE SUB DateN2S (MonthNr%, DayNr%, YearNr%, DateSt$)
  8.    DECLARE SUB Int2Date (MonthNr%, DayNr%, YearNr%, BYVAL SqueezedDate%)
  9.  
  10. FUNCTION Int2DateSt$ (DateNr%)
  11.    Int2Date M%, D%, Y%, DateNr%
  12.    DateSt$ = "xx-xx-xxxx"
  13.    DateN2S M%, D%, Y%, DateSt$
  14.    Int2DateSt$ = DateSt$
  15. END FUNCTION
  16.